home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscfunct / crt_pcur.c < prev    next >
C/C++ Source or Header  |  1987-05-09  |  246b  |  14 lines

  1. #include <dos.h>
  2.  
  3. crt_place_cursor( row, column, page ) int row, column, page;
  4. {
  5.     union REGS regs;
  6.     
  7.     regs.h.ah = 2;
  8.     regs.h.dh = row;
  9.     regs.h.dl = column;
  10.     regs.h.bh = page;
  11.     
  12.     int86( 0x10, ®s, ®s );
  13. }
  14.